home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 1994 October / PC Zone October 1994 Cover CD-Rom.bin / pczone.bat < prev    next >
DOS Batch File  |  1994-01-18  |  685b  |  63 lines

  1. @echo off
  2. :TOP
  3. go-menu main.mnu
  4. if errorlevel 10 goto END
  5. if errorlevel 9 goto HELP
  6. if errorlevel 8 goto UNP
  7. if errorlevel 7 goto AUDIO
  8. if errorlevel 6 goto OTB
  9. if errorlevel 5 goto DOOM
  10. if errorlevel 4 goto ZOOL
  11. if errorlevel 3 goto QUARAN
  12. if errorlevel 2 goto KARTS
  13. if errorlevel 1 goto MOON
  14. goto TOP
  15.  
  16. :MOON
  17. moon.bat
  18.  
  19.  
  20. :KARTS
  21. cd \karts
  22. go_small
  23. goto END
  24.  
  25. :QUARAN
  26. cd \qdemo
  27. go_small
  28. goto END
  29.  
  30. :ZOOL
  31. cd \zool2
  32. call z2.bat
  33. cd \
  34. goto TOP
  35.  
  36. :DOOM
  37. cd \doom
  38. call doom.bat
  39. cd \
  40. goto TOP
  41.  
  42. :OTB
  43. cd \otb
  44. otb.bat
  45.  
  46. :AUDIO
  47. cd \QCD
  48. call QCD.bat
  49. cd\
  50. goto TOP
  51.  
  52. :UNP
  53. cd \unp
  54. call unpack.bat
  55. cd \
  56. goto TOP
  57.  
  58. :HELP
  59. see help.txt
  60. goto TOP
  61.  
  62. :END
  63.